home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 98 / Skunkware 98.iso / src / mail / pine3.96.tar.gz / pine3.96.tar / pine3.96 / pine / osdep / makefile.os2 < prev    next >
Makefile  |  1996-05-23  |  886b  |  60 lines

  1. # Don't edit makefile, edit makefile.bas instead.
  2. #
  3.  
  4. CC=    gcc
  5. RM=    rm -f
  6.  
  7. ALL=    os-os2.c
  8.  
  9. .SUFFIXES: .c .ic
  10.  
  11. .ic.c:
  12.     includer.exe $*.ic $*.c
  13.  
  14. all:    includer.exe $(ALL)
  15.  
  16. includer.exe:    includer.c
  17.     $(CC) -Zcrtdll -O2 -o includer.exe includer.c
  18.  
  19. clean:
  20.     $(RM) $(ALL) includer.exe
  21.  
  22. # You don't have to run this unless you change a .ic file.
  23. depend:
  24.     echo Dependencies must be built under Unix
  25.  
  26. os-os2.c: \
  27.     header.os2 \
  28.     canacces.os2 \
  29.     filesize \
  30.     writ_dir \
  31.     creatdir.os2 \
  32.     rename.dos \
  33.     bld_path.dos \
  34.     lstcmpnt.dos \
  35.     expnfldr.dos \
  36.     fnexpand.os2 \
  37.     fltrname.os2 \
  38.     diskquot.non \
  39.     readfile.os2 \
  40.     tempfile \
  41.     tempnam.dos \
  42.     coredump \
  43.     hostname \
  44.     domnames \
  45.     canonicl.dos \
  46.     jobcntrl.dos \
  47.     err_desc.dos \
  48.     pw_stuff.dos \
  49.     chnge_pw.dos \
  50.     mimedisp \
  51.     fgetpos \
  52.     dosextra \
  53.     pipe.os2 \
  54.     sendmail.dos \
  55.     execview.os2 \
  56.     print.os2 \
  57.     debuging.os2 \
  58.     os-os2.ic
  59.     .\includer os-os2.ic os-os2.c
  60.